home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / AppKit / Graph / English.lproj / Graph.strings
Text File  |  1993-04-01  |  2KB  |  77 lines

  1.  
  2. /*
  3.  * This is the source file for the localizable strings in Graph.  The strings
  4.  * in this file are loaded on demand into the NXStringTable instance managed
  5.  * by the GraphApp object.
  6.  */
  7.  
  8.  
  9. /* Button title for the common OK and Cancel buttons */
  10. "ok button"            = "OK";
  11. "cancel button"            = "Cancel";
  12.  
  13.  
  14. /* Name of untitled documents */
  15. "untitled doc"            = "UNTITLED";
  16.  
  17.  
  18. /*
  19.  * The title and message shown in the Alert that appears when a file
  20.  * cannot be opened.
  21.  */
  22. "open alert title"        = "Open";
  23. "open alert message"        = "The file %s could not be opened.";
  24.  
  25.  
  26. /*
  27.  * The title and message shown in the Alert that appears when a file
  28.  * cannot be saved.
  29.  */
  30. "save alert title"        = "Save";
  31. "save alert message"        = "The file %s could not be created.";
  32.  
  33.  
  34. /*
  35.  * The title, message and buttons in the Alert that appears when a file
  36.  * with unsaved changes is closed.
  37.  */
  38. "close alert title"        = "Close";
  39. "close alert message"        = "%s has unsaved changes.  Save them?";
  40. "save button"            = "Save";
  41. "dont save button"        = "Don't Save";
  42.  
  43.  
  44. /*
  45.  * The title, message and buttons in the Alert that appears when the user
  46.  * quits with unsaved changes in documents.
  47.  */
  48. "quit alert title"        = "Quit";
  49. "quit alert message"        = "Some documents have unsaved changes";
  50. "review button"            = "Review Unsaved";
  51. "quit button"            = "Quit Anyway";
  52.  
  53.  
  54. /*
  55.  * The title, message and buttons in the Alert that appears when the user
  56.  * reverts to saved with unsaved changes in documents.
  57.  */
  58. "revert alert title"        = "Revert to Saved";
  59. "revert alert message"        = "%s has unsaved changes.  Are you sure you want to undo changes?";
  60. "revert button"            = "Revert";
  61.  
  62.  
  63. /*
  64.  * The title and message shown in the Alert that appears when the text of
  65.  * an expression cannot be parsed.
  66.  */
  67. "parse alert title"        = "Invalid Expression";
  68. "parse alert message"        = "The expresion you entered is not valid.  Please type in an expression in terms of the variable 'x'.";
  69. "3D parse alert message"    = "The expresion you entered is not valid.  Please type in an expression in terms of the variables 'u' and 'v'.";
  70.  
  71. /*
  72.  * The version message in the info panel; %s is filled by the actual version number.
  73.  */
  74. "version"            = "version %s";
  75.  
  76.  
  77.